home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / devel / tcl / tclx7_31.z / tclx7_31 / tcldev / tclX7.3a-p1 / tksrc / tkX.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-25  |  1.2 KB  |  34 lines

  1. /*
  2.  * tkX.h --
  3.  *
  4.  * Tk C interfaces supplied by Extended Tcl.  These are used by wishx startup
  5.  * and signal handling.
  6.  *-----------------------------------------------------------------------------
  7.  * Copyright 1993 Karl Lehenbauer and Mark Diekhans.
  8.  *
  9.  * Permission to use, copy, modify, and distribute this software and its
  10.  * documentation for any purpose and without fee is hereby granted, provided
  11.  * that the above copyright notice appear in all copies.  Karl Lehenbauer and
  12.  * Mark Diekhans make no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without express or
  14.  * implied warranty.
  15.  *-----------------------------------------------------------------------------
  16.  * $Id: tkX.h,v 1.1 1993/11/25 05:07:50 markd Exp $
  17.  *-----------------------------------------------------------------------------
  18.  */
  19.  
  20. #ifndef TKX_H
  21. #define TKX_H
  22.  
  23. typedef void (TkX_ShellSignalProc) _ANSI_ARGS_((int signalNum));
  24.  
  25. extern void
  26. TkX_Startup _ANSI_ARGS_((Tcl_Interp          *interp,
  27.                          int                  interactive,
  28.                          TkX_ShellSignalProc *errorSignalProc));
  29.  
  30. void
  31. TkX_WishInit _ANSI_ARGS_((Tcl_Interp *interp));
  32.  
  33. #endif /* TKX_H */
  34.